b8c0c4d5f6852afa24f1643a0b5eb2fa8b67919a,ui-designer/impl/com/intellij/uiDesigner/designSurface/InsertComponentProcessor.java,InsertComponentProcessor,processMouseEvent,#MouseEvent#,188

Before Change


      }
    }
    else if (e.getID() == MouseEvent.MOUSE_MOVED) {
      myLastLocation = myGridInsertProcessor.processDragEvent(e.getPoint(), getComponentToInsert());
      if (myLastLocation.canDrop(getComponentToInsert())) {
        setCursor(FormEditingUtil.getCopyDropCursor());
      }

After Change


      }
    }
    else if (e.getID() == MouseEvent.MOUSE_MOVED) {
      final ComponentItem componentToInsert = getComponentToInsert();
      if (componentToInsert != null) {
        myLastLocation = myGridInsertProcessor.processDragEvent(e.getPoint(), componentToInsert);
        if (myLastLocation.canDrop(getComponentToInsert())) {
          setCursor(FormEditingUtil.getCopyDropCursor());